 :root {
            --primary: #0A2463;
            --primary-dark: #071a4a;
            --primary-light: #1a3a8f;
            --secondary: #D4AF37;
            --secondary-dark: #b8972c;
            --secondary-light: #e8c04d;
            --light: #FFF8E8;
            --dark: #3E3E3E;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Buttons */
        .btn {
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 0.25rem;
            transition: all 0.3s ease;
        }

        .btn-premium {
            background-color: var(--secondary);
            color: var(--primary);
            border: 2px solid var(--secondary);
        }

        .btn-premium:hover {
            background-color: var(--secondary-dark);
            border-color: var(--secondary-dark);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-outline-premium {
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline-premium:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        /* Navigation */
        .navbar {
            background-color: rgba(10, 36, 99, 0.9);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand .logo-icon {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }

        .navbar-brand .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: calc(100% - 2rem);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
            padding-top: 80px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .highlight {
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(212, 175, 55, 0.3);
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-cta .btn {
            min-width: 160px;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: bounce 2s infinite;
        }

        .hero-scroll-indicator i {
            font-size: 1.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* Property Search */
        .search-card {
            background-color: white;
            border-radius: 0.5rem;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Section Headers */
        .section-header {
            position: relative;
            padding-bottom: 1rem;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* Property Cards */
        .property-card {
            background-color: white;
            border-radius: 0.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .property-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .property-image {
            position: relative;
            overflow: hidden;
        }

        .property-image img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .property-card:hover .property-image img {
            transform: scale(1.05);
        }

        .property-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 36, 99, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .property-card:hover .property-overlay {
            opacity: 1;
        }

        .property-overlay .btn {
            margin: 0.25rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .property-card:hover .property-overlay .btn {
            opacity: 1;
            transform: translateY(0);
        }

        .property-overlay .btn:nth-child(1) {
            transition-delay: 0.1s;
        }

        .property-overlay .btn:nth-child(2) {
            transition-delay: 0.2s;
        }

        .property-details {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .property-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .property-location {
            color: var(--gray);
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .property-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .property-features span {
            display: flex;
            align-items: center;
        }

        .property-features i {
            margin-right: 0.25rem;
            color: var(--secondary);
        }

        .property-price {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .favorite-btn {
            color: var(--gray);
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .favorite-btn:hover,
        .favorite-btn.active {
            color: var(--secondary);
            transform: scale(1.1);
        }

        /* 360° Virtual Tour Section */
        .virtual-tour {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .panorama-container {
            position: relative;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .panorama-viewer {
            width: 100%;
            height: 400px;
            background-color: #000;
        }

        .panorama-controls {
            position: absolute;
            bottom: 15px;
            left: 15px;
            z-index: 10;
            display: flex;
            gap: 0.5rem;
        }

        .tour-features {
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .feature-text h5 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Premium Features */
        .feature-card {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            height: 100%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            font-size: 1.75rem;
            background-color: rgba(10, 36, 99, 0.1);
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--gray);
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }

        .testimonial-slider {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-item {
            padding: 0 15px;
        }

        .testimonial-content {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            height: 100%;
        }

        .testimonial-content::before {
            content: '\201C';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            color: rgba(212, 175, 55, 0.1);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }

        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--secondary);
        }

        .author-info h5 {
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .author-info span {
            color: var(--gray);
            font-size: 0.85rem;
        }

        /* Slick slider overrides */
        .slick-dots {
            bottom: -50px;
        }

        .slick-dots li button:before {
            font-size: 10px;
            color: var(--secondary);
        }

        .slick-dots li.slick-active button:before {
            color: var(--primary);
        }

        /* Lands Section */
        .lands-section {
            padding: 5rem 0;
            background-color: white;
        }

        .land-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .land-feature {
            flex: 1 1 300px;
            background: var(--light);
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        /* Flats Section */
        .flats-section {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .flat-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .flat-type {
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .flat-type:hover {
            transform: translateY(-5px);
        }

        .flat-type img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .flat-type-content {
            padding: 1.5rem;
        }

        /* Call to Action */
        .cta-section {
            background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            padding: 5rem 0;
            text-align: center;
            color: white;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary), rgba(10, 36, 99, 0.8));
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section .lead {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-brand .logo-icon {
            color: var(--secondary);
            margin-right: 0.5rem;
        }

        .footer-about {
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
        }

        .footer-contact li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-right: 0.75rem;
            margin-top: 0.2rem;
        }

        .footer-newsletter input {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-right: none;
        }

        .footer-newsletter button {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 2rem 0;
        }

        .footer-legal-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-legal-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .footer-legal-links a:hover {
            color: var(--secondary);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar {
                background-color: var(--primary);
            }

            .land-features, .flat-types {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .hero {
                background-attachment: scroll;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.25rem;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .search-card {
                margin-top: 0;
            }
            
            .panorama-controls {
                left: 50%;
                transform: translateX(-50%);
            }

            .testimonial-content {
                padding: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 1rem;
            }

            .cta-buttons .btn:last-child {
                margin-bottom: 0;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-cta .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .hero-cta .btn:last-child {
                margin-bottom: 0;
            }
            
            .footer-legal-links {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }

            .testimonial-text {
                padding-left: 1rem;
            }

            .testimonial-content::before {
                left: 1rem;
            }
        }